home *** CD-ROM | disk | FTP | other *** search
/ CDROM of CDROMs 1994 May / The CD-ROM of CD-ROMs - The Consumer's Guide to CD-ROMs - Walnut Creek May 1994.iso / samples / unix / part6 < prev    next >
Encoding:
Internet Message Format  |  1994-04-12  |  32.0 KB

  1. From: tmatimar@isgtec.com (Ted M A Timar)
  2. Newsgroups: comp.unix.questions,comp.unix.shell,news.answers,comp.answers
  3. Subject: Unix - Frequently Asked Questions (6/7) [Frequent posting]
  4.  
  5. Archive-name: unix-faq/faq/part6
  6. Version: $Id: part6,v 2.2 1993/03/19 16:04:49 tmatimar Exp $
  7.  
  8. These seven articles contain the answers to some Frequently Asked
  9. Questions often seen in comp.unix.questions and comp.unix.shell.
  10. Please don't ask these questions again, they've been answered plenty
  11. of times already - and please don't flame someone just because they may
  12. not have read this particular posting.  Thank you.
  13.  
  14. Many FAQs, including this one, are available on the archive site
  15. rtfm.mit.edu (18.172.1.27) in the directory pub/usenet/news.answers.
  16. The name under which a FAQ is archived appears in the "Archive-Name:"
  17. line at the top of the article.  This FAQ is archived as
  18. "unix-faq/faq/part[1-7]".
  19.  
  20. These articles are divided approximately as follows:
  21.  
  22.       1.*) General questions.
  23.       2.*) Relatively basic questions, likely to be asked by beginners.
  24.       3.*) Intermediate questions.
  25.       4.*) Advanced questions, likely to be asked by people who thought
  26.        they already knew all of the answers.
  27.       5.*) Questions pertaining to the various shells, and the differences.
  28.       6.*) An overview of Unix variants.
  29.       7.*) An comparison of configuration management systems (RCS, SCCS).
  30.  
  31. This article includes answers to:
  32.  
  33.       6.1)  Disclaimer, introduction and acknowledgements.
  34.       6.2)  A very brief look at Unix history.
  35.       6.3)  Main Unix flavors.
  36.       6.4)  Unix Standards.
  37.       6.5)  Identifying your Unix flavor.
  38.       6.6)  Brief notes on some well-known (commercial/PD) Unices.
  39.       6.7)  Real-time Unices.
  40.       6.8)  Unix glossary.
  41.  
  42. If you're looking for the answer to, say, question 6.5, and want to skip
  43. everything else, you can search ahead for the regular expression "^6.5)".
  44.  
  45. While these are all legitimate questions, they seem to crop up in
  46. comp.unix.questions or comp.unix.shell on an annual basis, usually
  47. followed by plenty of replies (only some of which are correct) and then
  48. a period of griping about how the same questions keep coming up.  You
  49. may also like to read the monthly article "Answers to Frequently Asked
  50. Questions" in the newsgroup "news.announce.newusers", which will tell
  51. you what "UNIX" stands for.
  52.  
  53. With the variety of Unix systems in the world, it's hard to guarantee
  54. that these answers will work everywhere.  Read your local manual pages
  55. before trying anything suggested here.  If you have suggestions or
  56. corrections for any of these answers, please send them to to
  57. tmatimar@isgtec.com.
  58.  
  59. ----------------------------------------------------------------------
  60.  
  61. Subject: Disclaimer, introduction and acknowledgements.
  62. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  63. Date: Fri Jan  8 14:56:22 EST 1993
  64. X-Version: 2.1
  65.  
  66. 6.1)  Disclaimer, introduction and acknowledgements.
  67.  
  68.       The following is offered with no guarantee as to accuracy or
  69.       completeness.  I have done what I can in the time available,
  70.       often with conflicting information, and it still is very much work
  71.       in progress.  I hope to keep improving this summary.  Comments and
  72.       corrections welcome:  lew@bnr.ca.
  73.  
  74.       First a short definition.  By Unix we mean an operating system
  75.       typically written in C, with a hierarchical file system,
  76.       integration of file and device I/O, whose system call interface
  77.       includes services such as fork(), pipe(), and whose user
  78.       interface includes tools such as cc, troff, grep, awk, and a
  79.       choice of shell.  Note that UNIX is a registered trademark of USL
  80.       (AT&T), but will be used here in its generic sense.
  81.  
  82.       Most Unices (the more common plural form) are derived more or
  83.       less directly from AT&T code (some code from the first C version
  84.       is presumably still left in most), but there are also clones
  85.       (i.e. Unix-compatible systems with no AT&T code).
  86.  
  87.       In addition, there are also Unix-like environments (e.g. VOS)
  88.       sitting on top of other OSs, and OSs inspired from Unix (yes,
  89.       even DOS!).  These are not covered here.  Little on real-time
  90.       Unices yet (although more is planned).
  91.  
  92.       Unix comes in an incredible variety of flavors.  This is to a
  93.       large extent due to availability of sources and the ease of
  94.       porting and modifying Unix.  Typically, a vendor of Unix will
  95.       start with one basic flavor (see below), take ideas/code from the
  96.       other major flavor, add and change many things, etc.  This
  97.       results in yet another new Unix flavor.  Today, there are
  98.       literally hundreds of Unices available, the closest thing to
  99.       standard Unix being (by definition) System V.
  100.  
  101.       This answer was put together mostly from information on the net
  102.       and email.  Some specific sources are also mentioned in the
  103.       appropriate sections.
  104.  
  105.       Acknowledgements: (in addition to references): pat@bnr.ca,
  106.       guy@auspex.com, pen@lysator.liu.se, mikes@ingres.com,
  107.       mjd@saul.cis.upenn.edu, root%candle.uucp@ls.com, ee@atbull.bull.co.at,
  108.       Aaron_Dailey@stortek.com, ralph@dci.pinetree.org, sbdah@mcshh.hanse.de,
  109.       macmach@andrew.cmu.edu, jwa@alw.nih.gov [4.4BSD]
  110.       and all the other folks whose posts I read.  Many thanks!
  111.  
  112. ------------------------------
  113.  
  114. Subject: A very brief look at Unix history.
  115. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  116. Date: Fri Jan  8 14:56:22 EST 1993
  117. X-Version: 2.1
  118.  
  119. 6.2)  A very brief look at Unix history.
  120.  
  121.       Unix history goes back to 1969 and the famous "little-used PDP-7
  122.       in a corner" on which Ken Thompson, Dennis Ritchie (the R in K&R)
  123.       and others started work on what was to become Unix.  The name
  124.       "Unix" was intended as a pun on Multics (and was written "Unics"
  125.       at first -- UNiplexed Information and Computing System).
  126.  
  127.       For the first 10 years, Unix development was essentially confined
  128.       to Bell Labs.  These initial versions were labeled "Version n" or
  129.       "Nth Edition" (of the manuals), and were for DEC's PDP-11 (16
  130.       bits) and later VAXen (32 bits).  Some significant versions
  131.       include:
  132.  
  133.       V1 (1971):  1st Unix version, in assembler on a PDP-11/20.
  134.      Included file system, fork(), roff, ed.  Was used as a text
  135.      processing tool for preparation of patents.  Pipe() appeared
  136.      first in V2!
  137.  
  138.       V4 (1973):  Rewritten in C, which is probably the most
  139.      significant event in this OS's history: it means Unix can be
  140.      ported to a new hardware in months, and changes are easy.  The
  141.      C language was originally designed for the Unix operating
  142.      system, and hence there is a strong synergy between C and Unix.
  143.  
  144.       V6 (1975):  First version of Unix widely available outside
  145.      Bell Labs (esp.  in universities).  This was also the start of
  146.      Unix diversity and popularity.  1.xBSD (PDP-11) was derived
  147.      from this version.  J. Lions published "A commentary on the
  148.      Unix Operating System" based on V6.
  149.  
  150.       V7 (1979):  For many, this is the "last true Unix", an
  151.      "improvement over all preceding and following Unices"
  152.      [Bourne].  It included full K&R C, uucp, Bourne shell.  V7 was
  153.      ported to the VAX as 32V.  The V7 kernel was a mere 40
  154.      Kbytes!
  155.  
  156.      Here (for reference) are the system calls of V7:
  157.         _exit, access, acct, alarm, brk, chdir, chmod, chown,
  158.         chroot, close, creat, dup, dup2, exec*, exit, fork, fstat,
  159.         ftime, getegid, geteuid, getgid, getpid, getuid, gtty,
  160.         indir, ioctl, kill, link, lock, lseek, mknod, mount,
  161.         mpxcall, nice, open, pause, phys, pipe, pkoff, pkon,
  162.         profil, ptrace, read, sbrk, setgid, setuid, signal, stat,
  163.         stime, stty, sync, tell, time, times, umask, umount,
  164.         unlink, utime, wait, write.
  165.  
  166.       These Vn versions were developed by the Computer Research Group
  167.       (CRG) of Bell Labs.  Another group, the Unix System Group (USG),
  168.       was responsible for support.  A third group at Bell Labs was also
  169.       involved in Unix development, the Programmer's WorkBench (PWB),
  170.       to which we owe, for example, sccs, named pipes and other
  171.       important ideas.  Both groups were merged into Unix System
  172.       Development Lab in 1983.
  173.  
  174.       Work on Unix continued at Bell Labs in the 1980s.  The V series
  175.       was further developed by the CRG (Stroustrup mentions V10 in the
  176.       2nd edition of his book on C++), but we don't seem to hear much
  177.       about this otherwise.  The company now responsible for Unix
  178.       (System V) is called Unix System Laboratories (USL) and is
  179.       majority-owned by AT&T.  Apparently Novell wants to buy USL?!
  180.  
  181.       But much happened to Unix outside AT&T, especially at Berkeley
  182.       (where the other major flavor comes from).  Vendors (esp. of
  183.       workstations) also contributed much (e.g. Sun's NFS).
  184.  
  185.       The book "Life with Unix" by Don Libes and Sandy Ressler is
  186.       fascinating reading for anyone interested in Unix, and covers a
  187.       lot of the history, interactions, etc..  Much in the present
  188.       section is summarized from this book.
  189.  
  190. ------------------------------
  191.  
  192. Subject: Main Unix flavors.
  193. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  194. Date: Tue Mar  2 14:11:45 EST 1993
  195. X-Version: 2.2
  196.  
  197. 6.3)  Main Unix flavors.
  198.  
  199.       Until recently, there were basically two main flavors of Unix:
  200.       System V (five) from AT&T, and the Berkeley Software Distribution
  201.       (BSD).  SVR4 is essentially a merge of these two flavors.  End
  202.       '91, OSF/1 from the Open Software Foundation was released (as a
  203.       direct competitor to System V) and may (future will tell) change
  204.       this picture.
  205.  
  206.       The following lists the main releases and features of System V,
  207.       BSD and OSF/1.
  208.  
  209.       System V from AT&T.  Typical of Intel hardware.  Most often
  210.      ported Unix, typically with BSD enhancements (csh, job
  211.      control, termcap, curses, vi, symbolic links).  System V
  212.      evolution is now overseen by Unix International (UI).  UI
  213.      members include AT&T, Sun, ....
  214.      Newsgroup: comp.unix.sysv[23]86.  Main releases:
  215.  
  216.      - System III (1982): first commercial Unix from AT&T
  217.        - FIFOs (named pipes)  (later?)
  218.  
  219.      - System V (1983):
  220.        - IPC package (shm, msg, sem)
  221.  
  222.      - SVR2 (1984):
  223.        - shell functions (sh)
  224.        - SVID (System V Interface Definition)
  225.  
  226.      - SVR3 (1986) for ? platforms:
  227.        - STREAMS (inspired by V8), poll(), TLI (network software)
  228.        - RFS
  229.        - shared libs
  230.        - SVID 2
  231.        - demand paging (if hardware supports)
  232.  
  233.      - SVR3.2:
  234.        - merge with Xenix (Intel 80386)
  235.        - networking
  236.  
  237.      - SVR4 (1988), mainstream of Unix implementations, merge of
  238.        System V, BSD, and SunOS.
  239.        - From SVR3: sysadmin, terminal I/F, printer (from BSD?),
  240.          RFS, STREAMS, uucp
  241.        - From BSD: FFS, TCP/IP, sockets, select(), csh
  242.        - From SunOS: NFS, OpenLook GUI, X11/NeWS, virtual memory
  243.          subsystem with memory-mapped files, shared libraries
  244.          (!= SVR3 ones?)
  245.        - ksh
  246.        - ANSI C
  247.        - Internationalization (8-bit clean)
  248.        - ABI (Application Binary Interface -- routines instead of traps)
  249.        - POSIX, X/Open, SVID3
  250.  
  251.      - SVR4.1
  252.        - async I/O (from SunOS?)
  253.  
  254.      - SVR4.2 (based on SVR4.1ES)
  255.        - Veritas FS, ACLs
  256.        - Dynamically loadable kernel modules
  257.  
  258.      - Future:
  259.        - SVR4 MP (multiprocessor)
  260.        - Use of Chorus microkernel?
  261.  
  262.       Berkeley Software Distribution (BSD).  Typical of VAXen, RISCs,
  263.      many workstations.  More dynamic, research versions now than
  264.      System V.  BSD is responsible for much of the popularity of
  265.      Unix.  Most enhancements to Unix started here.  The group
  266.      responsible at UCB (University of California at Berkeley) is
  267.      the Computer System Research Group (CSRG).  They closed down
  268.      in 1992.  Newsgroup: comp.unix.bsd.  Main releases:
  269.  
  270.      (much reorganized wrt dates and releases, hope it's converging)
  271.  
  272.      - 2.xBSD (1978) for PDP-11, still of significance? (2.11BSD
  273.        was released in 1992!).
  274.        - csh
  275.  
  276.      - 3BSD (1978):
  277.        - virtual memory
  278.  
  279.      - 4.?BSD:
  280.        - termcap, curses
  281.        - vi
  282.  
  283.      - 4.0BSD (1980):
  284.  
  285.      - 4.1BSD (?): base of later AT&T CRG versions
  286.        - job control
  287.        - automatic kernel config
  288.        - vfork()
  289.  
  290.      - 4.2BSD (1983):
  291.        - TCP/IP, sockets, ethernet
  292.        - UFS: long file names, symbolic links
  293.        - new reliable signals (4.1 reliable signals now in SVR3)
  294.        - select()
  295.  
  296.      - 4.3BSD (1986) for VAX, ?:
  297.      - 4.3 Tahoe (1988): 4.3BSD with sources, support for Tahoe
  298.        (32-bit supermini)
  299.        - Fat FFS
  300.        - New TCP algorithms
  301.      - 4.3 Reno (1990) for VAX, Tahoe, HP 9000/300:
  302.        - most of P1003.1
  303.        - NFS (from Sun)
  304.        - MFS (memory file system)
  305.        - OSI: TP4, CLNP, ISODE's FTAM, VT and X.500;  SLIP
  306.        - Kerberos
  307.  
  308.      - Net1 (?) and Net2 (June 1991) tapes: that portion of BSD which
  309.        requires no USL copyright
  310.  
  311.      - 4.4BSD (alpha June 1992) for HP 9000/300, Sparc, 386, DEC, others;
  312.        neither VAX nor Tahoe; two versions, lite (~Net2 contents plus,
  313.        fixes and new architectures) and encumbered (everything, requires
  314.        USL license):
  315.        - new virtual memory system (VMS) based on Mach 2.5
  316.        - virtual filesystem interface, log-structured filesystem, size
  317.          of local filesystem up to 2^63, NFS (freely redistributable,
  318.          works with Sun's, over UDP or TCP)
  319.        - ISO/OSI networking support (based on ISODE): TP4/CLNP/802.3 and
  320.          TP0/CONS/X.25, session and above in user space;  FTAM, VT, X.500.
  321.        - most of POSIX.1 (esp. new terminal driver a la SV), much of
  322.          POSIX.2, improved job control; ANSI C headers
  323.        - Kerberos integrated with much of the system (incl. NFS)
  324.        - TCP/IP enhancements (incl. header prediction, SLIP)
  325.        - important kernel changes (new system call convention, ...)
  326.        - other improvements: FIFOs, byte-range file locking
  327.        Official 4.4BSD release was expected within 6 months of above.
  328.  
  329.       The Open Software Foundation (OSF) released its Unix called OSF/1
  330.      end of 1991.  Still requires an SVR2 license.
  331.      Compatible/compliant with SVID 2 (and 3 coming), POSIX,
  332.      X/Open, etc..  OSF members include Apollo, Dec, HP, IBM, ....
  333.  
  334.      - OSF/1 (1991):
  335.        - based on Mach 2.5 kernel
  336.        - symmetric multiprocessing, parallelized kernel, threads
  337.        - logical volumes, disk mirroring, UFS (native), S5 FS, NFS
  338.        - enhanced security (B1 with some B2, B3; or C2), 4.3BSD admin
  339.        - STREAMS, TLI/XTI, sockets
  340.        - shared libs, dynamic loader (incl. kernel)
  341.        - Motif GUI
  342.  
  343.      - Future:
  344.        - OSF/1 MK (mikrokernel) based on Mach 3.0
  345.  
  346.       This list of major flavors should probably also include Xenix
  347.       (Microsoft) which has been the basis for many ports.  Derived from V7,
  348.       S III and finally System V, it is similar externally but significantly
  349.       changed internally (performance-tuned for micros).
  350.  
  351.  
  352.       Two very good books describe the internals of the two main flavors.
  353.       These are:
  354.       - System V: "Design of the Unix Operating SYstem", M.J. Bach.
  355.       - BSD: "Design and Implementation of the 4.3BSD Unix Operating System",
  356.     Leffler, McKusick, Karels, Quaterman.
  357.       For a good introduction to OSF/1 (not quite as technical as the
  358.       previous two), see: "Guide to OSF/1, A Technical Synopsis",
  359.       published by O'Reilly.  On SunOS, "Virtual Memory Architecture in
  360.       SunOS" and "Shared Libraries in SunOS" in Summer 1989 USENIX
  361.       Proceedings.
  362.  
  363.       A good set of articles on where Unix is going is "Unix Variants"
  364.       in the Apr 92 issue of Unix Review.  Other good sources of
  365.       information include the bsd-faq file, and many of the newsgroups
  366.       mentioned in the text.
  367.  
  368. ------------------------------
  369.  
  370. Subject: Unix Standards.
  371. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  372. Date: Fri Jan  8 14:56:22 EST 1993
  373. X-Version: 2.1
  374.  
  375. 6.4)  Unix Standards.
  376.  
  377.       This section briefly describes the more important standards
  378.       relevant to Unix.
  379.  
  380.       - IEEE:
  381.         - 802.x (LAN) standards (LLC, ethernet, token ring, token bus)
  382.         - POSIX (ISO 9945?): Portable Operating System I/F (Unix, VMS
  383.           and OS/2!) (only ? have been finalized at this point)
  384.           - 1003.1:  library procedures (mostly system calls) -- roughly V7
  385.                      except for signals and terminal I/F (1990)
  386.           - 1003.2:  shell and utilities
  387.           - 1003.3:  test methods and conformance
  388.           - 1003.4:  real-time: binary semaphores, process memory
  389.                      locking, memory-mapped files, shared memory,
  390.                      priority scheduling, real-time signals, clocks and
  391.                      timers, IPC message passing, synchronized I/O,
  392.                      asynchronous I/O, real-time files
  393.           - 1003.5:  Ada language bindings
  394.           - 1003.6:  security
  395.           - 1003.7:  system admin (incl. printing)
  396.           - 1003.8:  transparent file access
  397.           - 1003.9:  FORTRAN language bindings
  398.           - 1003.10: super computing
  399.           - 1003.12: protocol-independent I/Fs
  400.           - 1003.13: real-time profiles
  401.           - 1003.15: supercomputing batch I/Fs
  402.           - 1003.16: C-language bindings (?)
  403.           - 1003.17: directory services
  404.           - 1003.19: FORTRAN 90 language bindings
  405.  
  406.       - X/Open (consortium of vendors):
  407.         - X/Open Portability Guides (XPGn):
  408.           - XPG2 (1987), strong SV influence
  409.             Vol 1:  commands and utilities
  410.             Vol 2:  system calls and libraries
  411.             Vol 3:  terminal I/F (curses, termio), IPC (SV),
  412.                     internationalization
  413.             Vol 4:  programming languages (C, COBOL!)
  414.             Vol 5:  data management (ISAM, SQL)
  415.           - XPG3 (1989) adds: X11 API
  416.           - XPG4 (1992) adds: XTI?
  417.         - XOM series of interfaces:
  418.           - XOM (X/Open Object Management) generic I/F mechanisms for
  419.             following
  420.           - XDS (X/Open Directory Service)
  421.           - XMH (X/Open Mail ??)
  422.           - XMP (X/Open Management Protocols) -- not Bull's CM API?
  423.  
  424.       - AT&T
  425.         - System V Interface Definition (SVID)
  426.           - SVID1 (1985, SVR2)
  427.             Vol 1:  system calls and libraries (similar to XPG2.1)
  428.           - SVID2 (1986, SVR3)
  429.             Vol 1:  system calls and libraries (base, kernel extensions)
  430.             Vol 2:  commands and utilities (base, advanced, admin, software
  431.                     development), terminal I/F
  432.             Vol 3:  terminal I/F (again), STREAMS and TLI, RFS
  433.           - SVID3 (19??, SVR4) adds
  434.             Vol 4:  ??  &c
  435.         - APIs
  436.           - Transport Library Interface (TLI)
  437.           - ACSE/Presentation Library Interface (APLI)
  438.  
  439. ------------------------------
  440.  
  441. Subject: Identifying your Unix flavor.
  442. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  443. Date: Sun, 11 Oct 1992 15:29:00 +0000
  444. X-Version: 2.0
  445.  
  446. 6.5)  Identifying your Unix flavor.
  447.  
  448.       This section lists a number of things you can look at in
  449.       attempting to identify the base flavor of your Unix.  Given the
  450.       significant exchange of code and ideas between the various
  451.       flavors and the many changes made by vendors, any statement such
  452.       as "this Unix is an SVR2" is at best a statistical statement
  453.       (except for some SVRn ports).  Also many Unices offer most of
  454.       both worlds (either mixed as in SunOS or strictly separated as in
  455.       Apollo?).  So this section is perhaps not very useful...
  456.  
  457.       The list of features in previous sections can also help.  For
  458.       example, if a system has a poll(2) but no select(2), it is highly
  459.       probable that it is derived from SVR3.  Also the name of the OS
  460.       can provide a clue, as well as the logon message (e.g.  SGI's
  461.       "Irix SVR3.3.2") or the output of "uname -a" command.  Available
  462.       commands can also provide hints but this is probably less
  463.       reliable than kernel features.  For example, the type of terminal
  464.       initialization (inittab or ttys) is a more reliable indicator
  465.       than the print subsystem.
  466.  
  467.       Feature           Typical in SVRx         Typical in xBSD
  468.  
  469.       kernel name       /unix                   /vmunix
  470.       terminal init     /etc/inittab            /etc/ttys (only getty to 4.3)
  471.       boot init         /etc/rc.d directories   /etc/rc.* files
  472.       mounted FSs       /etc/mnttab             /etc/mtab
  473.       usual shell       sh, ksh                 csh, #! hack
  474.       native FS         S5 (blk: 512-2K)        UFS (blk: 4K-8K)
  475.                         file names <= 14 bytes  file names < 255 bytes
  476.       groups            need newgrp(1)          automatic membership
  477.                         SVR4: multiple groups
  478.       print subsystem   lp, lpstat, cancel      lpr, lpq, lprm (lpd daemon) ??
  479.       terminal control  termio, terminfo,       termios (sgtty before 4.3reno)
  480.                         SVR4: termios (POSIX)   termcap
  481.       job control       >= SVR4                 yes
  482.       ps command        ps -ef                  ps -aux
  483.       string fcns       memset, memcpy          bzero, bcopy
  484.       process mapping   /proc  (SVR4)
  485.  
  486. ------------------------------
  487.  
  488. Subject: Brief notes on some well-known (commercial/PD) Unices.
  489. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  490. Date: Fri Jan  8 14:56:22 EST 1993
  491. X-Version: 2.1
  492.  
  493. 6.6)  Brief notes on some well-known (commercial/PD) Unices.
  494.  
  495.       (I am not at all satisfied with this section, unfortunately I
  496.       have neither the time nor the documents to make it much better
  497.       (wrt contents).  Should only list Unices known by a reasonably
  498.       wide audience.  Small and non-US Unices welcome, e.g. Eurix.  In
  499.       need of reformatting)
  500.  
  501.       This section lists (in alphabetical order) some of the better
  502.       known Unices along with a brief description of their nature.
  503.  
  504.       AIX:  IBM's Unix, based on SVR2 (later up to SVR3.2?) with varying
  505.          degrees of BSD extensions, for various hardwares.  Proprietary
  506.          system admin (SMIT).  Both 850 and Latin-1 CPs.  Quite
  507.          different from most Unices and among themselves.
  508.          Newsgroup: comp.unix.aix.
  509.          - 1.x (for 386 PS/2)
  510.          - 2.x (for PC RTs)
  511.          - 3.x (for RS/6000), paging kernel, logical volume manager, i18n;
  512.            3.2 adds TLI/STREAMS.  SV-based with many enhancements.
  513.          - there is also a version for S/370 mainframes (as task under VM)
  514.          Was to have been base for OSF/1 until Mach was chosen instead.
  515.  
  516.       AOS (IBM):  4.3BSD port to IBM PC RT (for educational institutes).
  517.          Don't confuse with DG's proprietary OS of same name.
  518.  
  519.       Arix:  SV
  520.  
  521.       A/UX (Apple): SV with Berkeley enhancements, NFS, Mac GUI.  System 6
  522.          (later System 7) runs as guest of A/UX (opposite of MachTen).
  523.          Newsgroup: comp.unix.aux.
  524.          - 2.0:  SVR2 with 4.2BSD, system 6 Mac applications.
  525.          - 3.0 (1992): SVR2.2 with 4.3BSD and SVR3/4 extensions; X11R4,
  526.            MacX, TCP/IP, NFS, NIS, RPC/XDR, various shells, UFS or S5FS.
  527.            System 7 applications.
  528.          - 4.0 will have/be OSF/1.
  529.  
  530.       BOS for Bull's DPX/2 (680x0)
  531.          - V1 (1990): SVR3 with BSD extensions (FFS, select, sockets),
  532.            symmetric MP, X11R3
  533.          - V2 (1991): adds job control, disk mirroring, C2 security,
  534.            DCE extensions
  535.  
  536.       386BSD: Jolitz's port of Net2 software.  Posix, 32-bit, still in alpha.
  537.  
  538.       BSD/386 (80386):  from BSDI, with source (augmented Net2 software)
  539.          Newsgroup: comp.unix.bsd.
  540.  
  541.       Chorus/MiXV:  Unix SVR3.2 (SVR4) over Chorus nucleus, ABI/BCS.
  542.  
  543.       Coherent (80286):  Unix clone compatible with V7, some SVR2 (IPC).
  544.          V4.0 is 32-bit.  Newsgroup: comp.os.coherent
  545.  
  546.       Consensys: SVR4.2
  547.  
  548.       CTIX: SV-based, from Convergent
  549.  
  550.       D-NIX:  SV
  551.  
  552.       DomainIX (Apollo):  dual Unix over Apollo Domain operating system
  553.  
  554.       DomainOS (Apollo):  BSD 4.2? with System V? (strict differentiation?)
  555.          - 10.x
  556.  
  557.       DVIX (NT's DVS):  SVR2
  558.  
  559.       DYNIX (Sequent): 4.2BSD-based
  560.  
  561.       DYNIX/PTX: SVR3-based
  562.  
  563.       Esix (80386):  pure SVR4, X11, OpenLook (NeWS), Xview
  564.  
  565.       Eurix (80?86):  SVR3.2 (german?)
  566.  
  567.       FTX: Stratus fault-tolerant OS (68K or i860-i960 hardware)
  568.  
  569.       GNU Hurd (?):  vaporware from the Free Software Foundation (FSF):
  570.          Unix emulator over Mach 3.0 kernel.  Many GNU tools are very
  571.          popular (emacs) and used in the PD Unices.
  572.  
  573.       HP-UX (HP):  old from S III (SVRx), now SVR2 (4.2BSD?) with SV utilities
  574.          (they have trouble making up their minds).
  575.          - 6.5: SVR2
  576.          - 7.0: SVR3.2, symlinks
  577.          - 7.5
  578.          - 8.0: BSD based? for HP-9000 CISC (300/400) and RISC (800/700),
  579.            shared libs
  580.          - 9.0: includes DCE
  581.  
  582.       Interactive SVR3.2 (80x86): pure SVR3.  Interactive has been bought
  583.          by Sun; will their system survive Solaris?
  584.  
  585.       Idris:  first Unix clone by Whitesmith.
  586.          - 4D
  587.  
  588.       Irix (SGI):  SVR3.2, much BSD.  Newsgroup: comp.sys.sgi.
  589.  
  590.       Linux (80386):  PD Unix, conforms to POSIX.  Available with sources.
  591.          Compatible with SVR3.2?  Newsgroup: comp.os.linux
  592.  
  593.       MachTen, Tenon Intersystems:  runs as a guest of System 6, no memory
  594.          protection, 4.3BSD environment with TCP, NFS.
  595.  
  596.       MacMach (Mac II): 4.3BSD over Mach 3.0 microkernel, X11, Motif, GNU
  597.          software, sources, experimental System 7 as Mach task.  Complete
  598.          with all sources (need Unix license).
  599.  
  600.       Mach386: from Mt Xinu.  Based on Mach 2.5, with 4.3BSD-Tahoe
  601.          enhancements.  Also 2.6 MSD (Mach Source Distribution).
  602.  
  603.       Microport (80x86):  pure SVR4, X11, OpenLook GUI
  604.  
  605.       Minix (80x86, Atari, Amiga, Mac):  Unix clone compatible with V7.
  606.          Sold with sources.  Being POSIXified (sp?).  Newsgroup: comp.os.minix.
  607.  
  608.       MipsOS:  SVish (RISC/OS, now dropped, was BSDish)
  609.  
  610.       more/BSD (VAX, HP 9000/300):  Mt Xinu's Unix, based on 4.3BSD-Tahoe.
  611.          Newsgroup: comp.os.xinu?
  612.  
  613.       Net/2 tape (from Berkeley, 1991): BSD Unix, essentially compatible with
  614.          4.3BSD, includes only sources free of AT&T code, no low-level code.
  615.          See 386BSD and BSD/386 above.
  616.  
  617.       NextStep (Next):  BSD4.3 over Mach kernel, own GUI.
  618.          - 1.x, 2.0 (old)
  619.          - 2.1 (current)
  620.          - 2.2 (support for NeXT Turbo machines)
  621.          - 3.0 (now shipping, optimized for 68040 machines)
  622.          - 3.1 (to be announced)
  623.          - NeXTSTEP 486 Beta release is scheduled for the 4th quarter 1992.
  624.  
  625.       NEWS-OS (Sony)
  626.          - 3.2
  627.  
  628.       OSF/1 (DEC): DEC's port of OSF/1
  629.  
  630.       PC-IX (IBM 8086):  SV
  631.  
  632.       Plan 9 (AT&T): announced 1992, complete rewrite, not clear how close to
  633.          Unix it is.  Key points: distributed, very small, various hardwares
  634.          (Sun, Mips, Next, SGI, generic hobbit, 680x0, PCs), C (not C++ as
  635.          rumors had it), new compiler, "8 1/2" window system (also very
  636.          small), 16-bit Unicode, CPU/file servers over high speed nets.
  637.  
  638.       SCO Xenix (80x86): Versions for XT (not robust!), 286, 386 (with demand
  639.          paging).  Today bulk of code is from System V.  Stable product.
  640.  
  641.       SCO Unix (80x86):  SVR3.2
  642.  
  643.       Sinix: System V base.
  644.  
  645.       Solaris (Sparc, 80386):
  646.          - 1.0:  essentially same as SunOS 4.1.1, with OpenWindows 2.0 and
  647.            DeskSet utilities.
  648.          - 1.0.1:  SunOS 4.1.2 with multiprocessing (kernel not multithreaded);
  649.            not for 386
  650.          - 2.0: (initially announced as SunOS 5.0 in 1988) based on SVR4
  651.            (with symmetric MP?), will include support for 386; with
  652.            OpenWindows 3.0 (X11R4) and OpenLook, DeskSet, ONC, NIS.  Both
  653.            a.out (BSD) and elf (SVR4) formats.  Kerberos support.  Compilers
  654.            unbundled!
  655.  
  656.       SunOS (680x0, Sparc, i386):  based on 4.3BSD, includes much from
  657.          System V.  Main Sun achievements: NFS (1984), SunView (1985), NeWS
  658.          (1986, postscript imaging, now in OpenWindows), OpenLook GUI standard,
  659.          OpenWindows (NeWS, X11, SunView!).  Newsgroup: comp.sys.sun.*.
  660.          - 3.x:  SV IPC package, FIFOs
  661.          - 4.0.3: lightweight processes, new virtual mem, shared libs
  662.          - 4.1: STREAMS & TLI, 8-bit clean?, async I/O, ms-dos file system
  663.          (continues as Solaris -- see above).
  664.  
  665.       UHC (80x86): pure SVR4, X11, Motif
  666.  
  667.       Ultrix (DEC):  based on 4.2BSD with much of 4.3.
  668.          Newsgroup: comp.unix.ultrix.
  669.          - 3.1, 4.0
  670.  
  671.       UNICOS (Cray):  System V base.  Newsgroup: comp.unix.cray
  672.          - 5.x, 6,x, 7.0
  673.  
  674.       UTEK (Tektronix)
  675.          - 4.0
  676.  
  677.       Xenix (80x86):  1st Unix on Intel hardware, based on SVR2 (previously on
  678.          S III and even V7).  Newsgroup: comp.unix.xenix.
  679.  
  680.       3B1 (680x0): SV-based, done by Convergent for AT&T.
  681.          Newsgroup: comp.sys.3b1.
  682.  
  683. ------------------------------
  684.  
  685. Subject: Real-time Unices.
  686. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  687. Date: Fri Jan  8 14:56:22 EST 1993
  688. X-Version: 2.1
  689.  
  690. 6.7)  Real-time Unices.
  691.  
  692.       This information is fragmentary.  I doubt all of following are Unices --
  693.          input is welcome.
  694.  
  695.       Convex RTS
  696.  
  697.       LynxOS (Beach Tree)
  698.  
  699.       REAL/IX (AEG)
  700.  
  701.       RTU (Concurrent), for 68K boxes
  702.  
  703.       Sorix (Siemens)
  704.  
  705.       Stellix (Stardent); it's Unix, but is it real-time?
  706.  
  707.       System V/86 (Motorola)
  708.  
  709.       TC/IX (CCD)
  710.  
  711.       Velocity (Ready Systems):
  712.  
  713.       VxWorks (Wind River Systems):  BSDish, no termcap.
  714.          Newsgroup: comp.os.vxworks.
  715.  
  716.       pSOS??
  717.  
  718. ------------------------------
  719.  
  720. Subject: Unix glossary.
  721. From: "Pierre (P.) Lewis" <lew@bnr.ca>
  722. Date: Fri Jan  8 14:56:22 EST 1993
  723. X-Version: 2.1
  724.  
  725. 6.8)  Unix glossary.
  726.  
  727.       This section provides short definitions of various concepts and
  728.       components of (or related to) Unix systems.
  729.  
  730.       Chorus: message-passing microkernel, may form basis for a future release
  731.          of SV.  Chorus already have SVR4 running on top (binary-compatible).
  732.  
  733.       DCE (Distributed Computing Environment, from OSF): Includes RPC (Apollo's
  734.          NCS), directory service (local based on DNS, global on X.500), time,
  735.          security, and threads services, DFS (distrib. file system), ....
  736.          OS-independent.
  737.  
  738.       DME (Distributed Management Environment, from OSF):  future.
  739.  
  740.       FFS (Fast File System): from Berkeley, 1983.  Equivalent (exact?) of
  741.          UFS in SunOS.  Has notions such as cylinder groups, fragments.
  742.  
  743.       Mach: modern kernels from CMU (Carnegie Mellon University) on which many
  744.          Unices and other OSs are based (e.g. OSF/1, MacMach, ...):
  745.          - 2.5: monolithic kernel with 4.2BSD
  746.          - 3.0: microkernel with BSD Unix server in user space (and other OSs,
  747.            e.g. MS-DOS)
  748.          Newsgroup: comp.os.mach
  749.  
  750.       MFS (Memory File System):
  751.  
  752.       NeWS (Network extensible Window System), from Sun?: PostScript-based,
  753.          networked, toolkits (and even clients) loaded in server.  Part of
  754.          OpenWindows.
  755.  
  756.       NFS (Network File System):  contributed by Sun to BSD, stateless server
  757.  
  758.       ONC (Open Network Computing): from Sun(?), includes RPC, name service
  759.          (NIS aka YP), NFS, ... (found in many Unices, other OSs).
  760.  
  761.       RFS (Remote File System):  SV, stateful server, incompatible with NFS
  762.  
  763.       RPC (Remote Procedure Call): high-level IPC (inter-process communication)
  764.          mechanism.  Two flavors.
  765.          - ONC: Over TCP or UDP (later OSI), uses XDR to encode data.
  766.          - DCE: has a different RPC mechanism (based on Apollo's NCS)
  767.  
  768.       S5 FS:  System V's native file system, blocks 512 to 2K.
  769.  
  770.       sockets:  BSD interface mechanism to networks (compare TLI).
  771.  
  772.       STREAMS:  a message-passing kernel mechanism, initially in SVR3, which
  773.          provides a very good interface for protocol development.
  774.  
  775.       TFS (Translucent File System): Sun, COW applied to files.
  776.  
  777.       TLI (Transport Library Interface):  SV's interface to transport services
  778.          (TCP, OSI).  UI has also defined an APLI (ACSE/Presentation Library
  779.          Interface)
  780.  
  781.       UFS (?): BSD's native file system as seen in SunOS, blocks 4K to 8K,
  782.          cylinder groups, fragments.
  783.  
  784.       XTI (X/Open Transport Interface):  TLI with enhancements
  785.  
  786.       X11: pixel-oriented window system from MIT.
  787.  
  788. ------------------------------
  789.  
  790. End of unix/faq Digest part 6 of 7
  791. **********************************
  792.  
  793. -- 
  794. Ted Timar - tmatimar@isgtec.com
  795.  
  796.